Seedling

Basic logger that prints messages to the JavaScript Console. Levels are mapped as:

Arbor.DEBUG ->Console.log

Arbor.INFO ->Console.info

Arbor.VERBOSE ->Console.info

Arbor.WARNING ->Console.warn

Arbor.ERROR ->Console.error

Arbor.WTF ->Console.error

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
open override val tag: String

A static or dynamically generated tag for logging.

Functions

Link copied to clipboard
open fun log(level: Int, tag: String, msg: () -> String, throwable: Throwable? = null)
open override fun log(level: Int, tag: String, msg: String, throwable: Throwable?, args: Array<out Any?>?)

A request to perform logging.